StepIntoRequest

data class StepIntoRequest(breakOnAsyncCall: Boolean?, skipList: List<LocationRange>?)

Represents request frame that can be used with Debugger#stepInto operation call.

Steps into the function call.

See also

Constructors

StepIntoRequest
Link copied to clipboard
fun StepIntoRequest(breakOnAsyncCall: Boolean? = null, skipList: List<LocationRange>? = null)

Properties

breakOnAsyncCall
Link copied to clipboard
val breakOnAsyncCall: Boolean? = null
Debugger will pause on the execution of the first async task which was scheduled before next pause.
skipList
Link copied to clipboard
val skipList: List<LocationRange>? = null
The skipList specifies location ranges that should be skipped on step into.

Sources

jvm source
Link copied to clipboard